[INFO] fetching crate ssv 0.1.0...
[INFO] fixing ssv-0.1.0 against try#622891a4e29178280638a6b63a8908bde2c0c854+cargoflags=-Zfix-edition=end=2015,2024 for pr-157817-2
[INFO] extracting crate ssv 0.1.0 into /workspace/builds/worker-2-tc2/source
[INFO] started tweaking crates.io crate ssv 0.1.0
[INFO] finished tweaking crates.io crate ssv 0.1.0
[INFO] tweaked toml for crates.io crate ssv 0.1.0 written to /workspace/builds/worker-2-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate ssv 0.1.0 on toolchain 622891a4e29178280638a6b63a8908bde2c0c854
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+622891a4e29178280638a6b63a8908bde2c0c854" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+622891a4e29178280638a6b63a8908bde2c0c854" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+622891a4e29178280638a6b63a8908bde2c0c854" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/source:/opt/rustwide/workdir:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-m" "1610612736" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:3a6becf2bc8dde7f3fa57ede90e4f284e72d296796fc446bbb1e2c7cc0530151" "sleep" "infinity", kill_on_drop: false }`
[INFO] [stdout] 32bca3c5749f2720cb97edbe8fe07b493ad7d538541239d77e9a19e407c1c419
[INFO] running `Command { std: "docker" "start" "32bca3c5749f2720cb97edbe8fe07b493ad7d538541239d77e9a19e407c1c419", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-w" "/opt/rustwide/workdir" "--user" "0:0" "32bca3c5749f2720cb97edbe8fe07b493ad7d538541239d77e9a19e407c1c419" "/opt/rustwide/cargo-home/bin/cargo" "+622891a4e29178280638a6b63a8908bde2c0c854" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "32bca3c5749f2720cb97edbe8fe07b493ad7d538541239d77e9a19e407c1c419", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=" "-e" "RUSTDOCFLAGS=" "-w" "/opt/rustwide/workdir" "--user" "0:0" "32bca3c5749f2720cb97edbe8fe07b493ad7d538541239d77e9a19e407c1c419" "/opt/rustwide/cargo-home/bin/cargo" "+622891a4e29178280638a6b63a8908bde2c0c854" "fix" "--allow-no-vcs" "--allow-dirty" "--frozen" "--all" "--all-targets" "--message-format=json" "-Zfix-edition=end=2015,2024", kill_on_drop: false }`
[INFO] [stderr] crater-edition-check: migrating to next edition
[INFO] [stderr]    Migrating Cargo.toml from 2021 edition to 2024
[INFO] [stderr]     Checking ssv v0.1.0 (/opt/rustwide/workdir)
[INFO] [stderr]    Migrating src/lib.rs from 2021 edition to 2024
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/engine/reader.rs:87:34
[INFO] [stdout]     |
[INFO] [stdout]  87 |         while let Some(result) = self.tokenizer.next() {
[INFO] [stdout]     |                        ------    ^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                        |         |
[INFO] [stdout]     |                        |         this value will be stored in a temporary; let us call it `#2`
[INFO] [stdout]     |                        |         up until Edition 2021 `#2` is dropped last but will be dropped earlier in Edition 2024
[INFO] [stdout]     |                        `result` calls a custom destructor
[INFO] [stdout]     |                        `result` will be dropped later as of Edition 2024
[INFO] [stdout]  88 |             match result {
[INFO] [stdout]  89 |                 Ok(token) => match self.process(token.value, state) {
[INFO] [stdout]     |                    -----           --------------------------------
[INFO] [stdout]     |                    |               |
[INFO] [stdout]     |                    |               this value will be stored in a temporary; let us call it `#1`
[INFO] [stdout]     |                    |               `#1` will be dropped later as of Edition 2024
[INFO] [stdout]     |                    `token` calls a custom destructor
[INFO] [stdout]     |                    `token` will be dropped later as of Edition 2024
[INFO] [stdout] ...
[INFO] [stdout] 101 |         }
[INFO] [stdout]     |         - now the temporary value is dropped here, before the local variables in the block or statement
[INFO] [stdout]     |
[INFO] [stdout]     = note: most of the time, changing drop order is harmless; inspect the `impl Drop`s for side effects like releasing locks or sending messages
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: `--force-warn tail-expr-drop-order` implied by `--force-warn rust-2024-compatibility`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/engine/tokenizer.rs:323:19
[INFO] [stdout]     |
[INFO] [stdout] 323 |             match self.process(element, state) {
[INFO] [stdout]     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                   |
[INFO] [stdout]     |                   this value will be stored in a temporary; let us call it `#1`
[INFO] [stdout]     |                   up until Edition 2021 `#1` is dropped last but will be dropped earlier in Edition 2024
[INFO] [stdout] 324 |                 Ok((next_state, token)) => {
[INFO] [stdout] 325 |                     let token = self.include_current_token_position(token);
[INFO] [stdout]     |                         -----
[INFO] [stdout]     |                         |
[INFO] [stdout]     |                         `token` calls a custom destructor
[INFO] [stdout]     |                         `token` will be dropped later as of Edition 2024
[INFO] [stdout] ...
[INFO] [stdout] 348 |         }
[INFO] [stdout]     |         - now the temporary value is dropped here, before the local variables in the block or statement
[INFO] [stdout]     |
[INFO] [stdout]     = note: most of the time, changing drop order is harmless; inspect the `impl Drop`s for side effects like releasing locks or sending messages
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]        Fixed src/tests/fluent_writer.rs (5 fixes)
[INFO] [stderr]        Fixed src/tests/tokenizer.rs (5 fixes)
[INFO] [stderr]    Migrating tests/roundtrip.rs from 2021 edition to 2024
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/engine/reader.rs:87:34
[INFO] [stdout]     |
[INFO] [stdout]  87 |         while let Some(result) = self.tokenizer.next() {
[INFO] [stdout]     |                        ------    ^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                        |         |
[INFO] [stdout]     |                        |         this value will be stored in a temporary; let us call it `#2`
[INFO] [stdout]     |                        |         up until Edition 2021 `#2` is dropped last but will be dropped earlier in Edition 2024
[INFO] [stdout]     |                        `result` calls a custom destructor
[INFO] [stdout]     |                        `result` will be dropped later as of Edition 2024
[INFO] [stdout]  88 |             match result {
[INFO] [stdout]  89 |                 Ok(token) => match self.process(token.value, state) {
[INFO] [stdout]     |                    -----           --------------------------------
[INFO] [stdout]     |                    |               |
[INFO] [stdout]     |                    |               this value will be stored in a temporary; let us call it `#1`
[INFO] [stdout]     |                    |               `#1` will be dropped later as of Edition 2024
[INFO] [stdout]     |                    `token` calls a custom destructor
[INFO] [stdout]     |                    `token` will be dropped later as of Edition 2024
[INFO] [stdout] ...
[INFO] [stdout] 101 |         }
[INFO] [stdout]     |         - now the temporary value is dropped here, before the local variables in the block or statement
[INFO] [stdout]     |
[INFO] [stdout]     = note: most of the time, changing drop order is harmless; inspect the `impl Drop`s for side effects like releasing locks or sending messages
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: `--force-warn tail-expr-drop-order` implied by `--force-warn rust-2024-compatibility`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/engine/tokenizer.rs:323:19
[INFO] [stdout]     |
[INFO] [stdout] 323 |             match self.process(element, state) {
[INFO] [stdout]     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                   |
[INFO] [stdout]     |                   this value will be stored in a temporary; let us call it `#1`
[INFO] [stdout]     |                   up until Edition 2021 `#1` is dropped last but will be dropped earlier in Edition 2024
[INFO] [stdout] 324 |                 Ok((next_state, token)) => {
[INFO] [stdout] 325 |                     let token = self.include_current_token_position(token);
[INFO] [stdout]     |                         -----
[INFO] [stdout]     |                         |
[INFO] [stdout]     |                         `token` calls a custom destructor
[INFO] [stdout]     |                         `token` will be dropped later as of Edition 2024
[INFO] [stdout] ...
[INFO] [stdout] 348 |         }
[INFO] [stdout]     |         - now the temporary value is dropped here, before the local variables in the block or statement
[INFO] [stdout]     |
[INFO] [stdout]     = note: most of the time, changing drop order is harmless; inspect the `impl Drop`s for side effects like releasing locks or sending messages
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:39:5
[INFO] [stdout]    |
[INFO] [stdout] 39 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:39:5
[INFO] [stdout]    |
[INFO] [stdout] 39 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:39:5
[INFO] [stdout]    |
[INFO] [stdout] 39 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:39:5
[INFO] [stdout]    |
[INFO] [stdout] 39 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:39:5
[INFO] [stdout]    |
[INFO] [stdout] 39 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:67:5
[INFO] [stdout]    |
[INFO] [stdout] 67 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:67:5
[INFO] [stdout]    |
[INFO] [stdout] 67 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:53:26
[INFO] [stdout]    |
[INFO] [stdout] 53 |                         .write_comment_line(domain_format_ref!($domain, "this is a comment"))
[INFO] [stdout]    |                          ------------------ borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 67 |     test_domain!(BytesDomain);
[INFO] [stdout]    |     ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:67:5
[INFO] [stdout]    |
[INFO] [stdout] 67 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:67:5
[INFO] [stdout]    |
[INFO] [stdout] 67 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:67:5
[INFO] [stdout]    |
[INFO] [stdout] 67 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:94:5
[INFO] [stdout]    |
[INFO] [stdout] 94 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:94:5
[INFO] [stdout]    |
[INFO] [stdout] 94 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:94:5
[INFO] [stdout]    |
[INFO] [stdout] 94 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:94:5
[INFO] [stdout]    |
[INFO] [stdout] 94 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:94:5
[INFO] [stdout]    |
[INFO] [stdout] 94 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:105:25
[INFO] [stdout]     |
[INFO] [stdout] 105 |                     row.write_value(domain_format_ref!($domain, "abc")).unwrap();
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 123 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:106:25
[INFO] [stdout]     |
[INFO] [stdout] 106 |                     row.write_value(domain_format_ref!($domain, "def ghi"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 123 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:111:25
[INFO] [stdout]     |
[INFO] [stdout] 111 |                     row.write_value(domain_format_ref!($domain, "#not-a-comment"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 123 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:113:25
[INFO] [stdout]     |
[INFO] [stdout] 113 |                     row.write_value(domain_format_ref!($domain, "123 456"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 123 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:115:25
[INFO] [stdout]     |
[INFO] [stdout] 115 |                     row.write_value(domain_format_ref!($domain, "789")).unwrap();
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 123 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:134:25
[INFO] [stdout]     |
[INFO] [stdout] 134 |                     row.write_value(domain_format_ref!($domain, "abc")).unwrap();
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 160 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:135:25
[INFO] [stdout]     |
[INFO] [stdout] 135 |                     row.write_spacing(domain_format_ref!($domain, " {TAB} "))
[INFO] [stdout]     |                         ------------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 160 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:137:25
[INFO] [stdout]     |
[INFO] [stdout] 137 |                     row.write_value(domain_format_ref!($domain, "def ghi"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 160 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:142:25
[INFO] [stdout]     |
[INFO] [stdout] 142 |                     row.write_spacing(domain_format_ref!($domain, "   "))
[INFO] [stdout]     |                         ------------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 160 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:144:25
[INFO] [stdout]     |
[INFO] [stdout] 144 |                     row.write_value(domain_format_ref!($domain, "#not-a-comment"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 160 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:146:25
[INFO] [stdout]     |
[INFO] [stdout] 146 |                     row.write_value(domain_format_ref!($domain, "123 456"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 160 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:148:25
[INFO] [stdout]     |
[INFO] [stdout] 148 |                     row.write_value(domain_format_ref!($domain, "789")).unwrap();
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 160 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:149:25
[INFO] [stdout]     |
[INFO] [stdout] 149 |                     row.write_spacing(domain_format_ref!($domain, "{TAB} {TAB}"))
[INFO] [stdout]     |                         ------------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 160 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:186:5
[INFO] [stdout]     |
[INFO] [stdout] 186 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:186:5
[INFO] [stdout]     |
[INFO] [stdout] 186 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:186:5
[INFO] [stdout]     |
[INFO] [stdout] 186 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:186:5
[INFO] [stdout]     |
[INFO] [stdout] 186 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:186:5
[INFO] [stdout]     |
[INFO] [stdout] 186 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:209:5
[INFO] [stdout]     |
[INFO] [stdout] 209 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:209:5
[INFO] [stdout]     |
[INFO] [stdout] 209 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:209:5
[INFO] [stdout]     |
[INFO] [stdout] 209 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:209:5
[INFO] [stdout]     |
[INFO] [stdout] 209 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:209:5
[INFO] [stdout]     |
[INFO] [stdout] 209 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:234:5
[INFO] [stdout]     |
[INFO] [stdout] 234 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:234:5
[INFO] [stdout]     |
[INFO] [stdout] 234 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:234:5
[INFO] [stdout]     |
[INFO] [stdout] 234 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:234:5
[INFO] [stdout]     |
[INFO] [stdout] 234 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:234:5
[INFO] [stdout]     |
[INFO] [stdout] 234 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = warning: this changes meaning in Rust 2024
[INFO] [stdout]     = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]     = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests.rs:51:5
[INFO] [stdout]    |
[INFO] [stdout] 51 |       test_with_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------------ in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_with_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests.rs:51:5
[INFO] [stdout]    |
[INFO] [stdout] 51 |       test_with_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------------ in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_with_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests.rs:51:5
[INFO] [stdout]    |
[INFO] [stdout] 51 |       test_with_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------------ in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_with_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: relative drop order changing in Rust 2024
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this temporary value will be dropped at the end of the block
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests.rs:51:5
[INFO] [stdout]    |
[INFO] [stdout] 51 |       test_with_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------------ in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this changes meaning in Rust 2024
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/temporary-tail-expr-scope.html>
[INFO] [stdout]    = note: this warning originates in the macro `bformat` which comes from the expansion of the macro `test_with_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Migrating tests/types_visibility.rs from 2021 edition to 2024
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 2.76s
[INFO] [stderr] crater-edition-check: ssv v0.1.0 (/opt/rustwide/workdir) updating edition from 2021 to 2024
[INFO] [stderr]     Checking ssv v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:39:5
[INFO] [stdout]    |
[INFO] [stdout] 39 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:39:5
[INFO] [stdout]    |
[INFO] [stdout] 39 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:39:5
[INFO] [stdout]    |
[INFO] [stdout] 39 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:39:5
[INFO] [stdout]    |
[INFO] [stdout] 39 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:39:5
[INFO] [stdout]    |
[INFO] [stdout] 39 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:40:5
[INFO] [stdout]    |
[INFO] [stdout] 40 |       test_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:40:5
[INFO] [stdout]    |
[INFO] [stdout] 40 |       test_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:40:5
[INFO] [stdout]    |
[INFO] [stdout] 40 |       test_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:40:5
[INFO] [stdout]    |
[INFO] [stdout] 40 |       test_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:40:5
[INFO] [stdout]    |
[INFO] [stdout] 40 |       test_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:67:5
[INFO] [stdout]    |
[INFO] [stdout] 67 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:67:5
[INFO] [stdout]    |
[INFO] [stdout] 67 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:53:26
[INFO] [stdout]    |
[INFO] [stdout] 53 |                         .write_comment_line(domain_format_ref!($domain, "this is a comment"))
[INFO] [stdout]    |                          ------------------ borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 67 |     test_domain!(BytesDomain);
[INFO] [stdout]    |     ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:67:5
[INFO] [stdout]    |
[INFO] [stdout] 67 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:67:5
[INFO] [stdout]    |
[INFO] [stdout] 67 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:67:5
[INFO] [stdout]    |
[INFO] [stdout] 67 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:68:5
[INFO] [stdout]    |
[INFO] [stdout] 68 |       test_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:68:5
[INFO] [stdout]    |
[INFO] [stdout] 68 |       test_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |         format!($string)
[INFO] [stdout]    |         ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:53:26
[INFO] [stdout]    |
[INFO] [stdout] 53 |                         .write_comment_line(domain_format_ref!($domain, "this is a comment"))
[INFO] [stdout]    |                          ------------------ borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 68 |     test_domain!(CharsDomain);
[INFO] [stdout]    |     ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:68:5
[INFO] [stdout]    |
[INFO] [stdout] 68 |       test_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:68:5
[INFO] [stdout]    |
[INFO] [stdout] 68 |       test_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:68:5
[INFO] [stdout]    |
[INFO] [stdout] 68 |       test_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:94:5
[INFO] [stdout]    |
[INFO] [stdout] 94 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:94:5
[INFO] [stdout]    |
[INFO] [stdout] 94 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:94:5
[INFO] [stdout]    |
[INFO] [stdout] 94 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:94:5
[INFO] [stdout]    |
[INFO] [stdout] 94 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:94:5
[INFO] [stdout]    |
[INFO] [stdout] 94 |       test_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:95:5
[INFO] [stdout]    |
[INFO] [stdout] 95 |       test_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:95:5
[INFO] [stdout]    |
[INFO] [stdout] 95 |       test_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:95:5
[INFO] [stdout]    |
[INFO] [stdout] 95 |       test_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:95:5
[INFO] [stdout]    |
[INFO] [stdout] 95 |       test_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests/writer.rs:95:5
[INFO] [stdout]    |
[INFO] [stdout] 95 |       test_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------- in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:105:25
[INFO] [stdout]     |
[INFO] [stdout] 105 |                     row.write_value(domain_format_ref!($domain, "abc")).unwrap();
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 123 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:106:25
[INFO] [stdout]     |
[INFO] [stdout] 106 |                     row.write_value(domain_format_ref!($domain, "def ghi"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 123 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:111:25
[INFO] [stdout]     |
[INFO] [stdout] 111 |                     row.write_value(domain_format_ref!($domain, "#not-a-comment"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 123 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:113:25
[INFO] [stdout]     |
[INFO] [stdout] 113 |                     row.write_value(domain_format_ref!($domain, "123 456"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 123 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:115:25
[INFO] [stdout]     |
[INFO] [stdout] 115 |                     row.write_value(domain_format_ref!($domain, "789")).unwrap();
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 123 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |         format!($string)
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:105:25
[INFO] [stdout]     |
[INFO] [stdout] 105 |                     row.write_value(domain_format_ref!($domain, "abc")).unwrap();
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 124 |     test_domain!(CharsDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |         format!($string)
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:106:25
[INFO] [stdout]     |
[INFO] [stdout] 106 |                     row.write_value(domain_format_ref!($domain, "def ghi"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 124 |     test_domain!(CharsDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |         format!($string)
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:111:25
[INFO] [stdout]     |
[INFO] [stdout] 111 |                     row.write_value(domain_format_ref!($domain, "#not-a-comment"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 124 |     test_domain!(CharsDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |         format!($string)
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:113:25
[INFO] [stdout]     |
[INFO] [stdout] 113 |                     row.write_value(domain_format_ref!($domain, "123 456"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 124 |     test_domain!(CharsDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |         format!($string)
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:115:25
[INFO] [stdout]     |
[INFO] [stdout] 115 |                     row.write_value(domain_format_ref!($domain, "789")).unwrap();
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 124 |     test_domain!(CharsDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:134:25
[INFO] [stdout]     |
[INFO] [stdout] 134 |                     row.write_value(domain_format_ref!($domain, "abc")).unwrap();
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 160 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:135:25
[INFO] [stdout]     |
[INFO] [stdout] 135 |                     row.write_spacing(domain_format_ref!($domain, " {TAB} "))
[INFO] [stdout]     |                         ------------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 160 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:137:25
[INFO] [stdout]     |
[INFO] [stdout] 137 |                     row.write_value(domain_format_ref!($domain, "def ghi"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 160 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:142:25
[INFO] [stdout]     |
[INFO] [stdout] 142 |                     row.write_spacing(domain_format_ref!($domain, "   "))
[INFO] [stdout]     |                         ------------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 160 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:144:25
[INFO] [stdout]     |
[INFO] [stdout] 144 |                     row.write_value(domain_format_ref!($domain, "#not-a-comment"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 160 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:146:25
[INFO] [stdout]     |
[INFO] [stdout] 146 |                     row.write_value(domain_format_ref!($domain, "123 456"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 160 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:148:25
[INFO] [stdout]     |
[INFO] [stdout] 148 |                     row.write_value(domain_format_ref!($domain, "789")).unwrap();
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 160 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |         format!($($tokens),*).into_bytes()
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:149:25
[INFO] [stdout]     |
[INFO] [stdout] 149 |                     row.write_spacing(domain_format_ref!($domain, "{TAB} {TAB}"))
[INFO] [stdout]     |                         ------------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 160 |     test_domain!(BytesDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |         format!($string)
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:134:25
[INFO] [stdout]     |
[INFO] [stdout] 134 |                     row.write_value(domain_format_ref!($domain, "abc")).unwrap();
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 161 |     test_domain!(CharsDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |         format!($string)
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:135:25
[INFO] [stdout]     |
[INFO] [stdout] 135 |                     row.write_spacing(domain_format_ref!($domain, " {TAB} "))
[INFO] [stdout]     |                         ------------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 161 |     test_domain!(CharsDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |         format!($string)
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:137:25
[INFO] [stdout]     |
[INFO] [stdout] 137 |                     row.write_value(domain_format_ref!($domain, "def ghi"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 161 |     test_domain!(CharsDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |         format!($string)
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:142:25
[INFO] [stdout]     |
[INFO] [stdout] 142 |                     row.write_spacing(domain_format_ref!($domain, "   "))
[INFO] [stdout]     |                         ------------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 161 |     test_domain!(CharsDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |         format!($string)
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:144:25
[INFO] [stdout]     |
[INFO] [stdout] 144 |                     row.write_value(domain_format_ref!($domain, "#not-a-comment"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 161 |     test_domain!(CharsDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |         format!($string)
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:146:25
[INFO] [stdout]     |
[INFO] [stdout] 146 |                     row.write_value(domain_format_ref!($domain, "123 456"))
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 161 |     test_domain!(CharsDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |         format!($string)
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:148:25
[INFO] [stdout]     |
[INFO] [stdout] 148 |                     row.write_value(domain_format_ref!($domain, "789")).unwrap();
[INFO] [stdout]     |                         ----------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 161 |     test_domain!(CharsDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |         format!($string)
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |             domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                    - temporary value is freed at the end of this statement
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:149:25
[INFO] [stdout]     |
[INFO] [stdout] 149 |                     row.write_spacing(domain_format_ref!($domain, "{TAB} {TAB}"))
[INFO] [stdout]     |                         ------------- borrow later used by call
[INFO] [stdout] ...
[INFO] [stdout] 161 |     test_domain!(CharsDomain);
[INFO] [stdout]     |     ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:186:5
[INFO] [stdout]     |
[INFO] [stdout] 186 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:186:5
[INFO] [stdout]     |
[INFO] [stdout] 186 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:186:5
[INFO] [stdout]     |
[INFO] [stdout] 186 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:186:5
[INFO] [stdout]     |
[INFO] [stdout] 186 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:186:5
[INFO] [stdout]     |
[INFO] [stdout] 186 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |           format!($string)
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:187:5
[INFO] [stdout]     |
[INFO] [stdout] 187 |       test_domain!(CharsDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |           format!($string)
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:187:5
[INFO] [stdout]     |
[INFO] [stdout] 187 |       test_domain!(CharsDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |           format!($string)
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:187:5
[INFO] [stdout]     |
[INFO] [stdout] 187 |       test_domain!(CharsDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |           format!($string)
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:187:5
[INFO] [stdout]     |
[INFO] [stdout] 187 |       test_domain!(CharsDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |           format!($string)
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:187:5
[INFO] [stdout]     |
[INFO] [stdout] 187 |       test_domain!(CharsDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:209:5
[INFO] [stdout]     |
[INFO] [stdout] 209 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:209:5
[INFO] [stdout]     |
[INFO] [stdout] 209 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:209:5
[INFO] [stdout]     |
[INFO] [stdout] 209 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:209:5
[INFO] [stdout]     |
[INFO] [stdout] 209 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:209:5
[INFO] [stdout]     |
[INFO] [stdout] 209 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |           format!($string)
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:210:5
[INFO] [stdout]     |
[INFO] [stdout] 210 |       test_domain!(CharsDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |           format!($string)
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:210:5
[INFO] [stdout]     |
[INFO] [stdout] 210 |       test_domain!(CharsDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |           format!($string)
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:210:5
[INFO] [stdout]     |
[INFO] [stdout] 210 |       test_domain!(CharsDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |           format!($string)
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:210:5
[INFO] [stdout]     |
[INFO] [stdout] 210 |       test_domain!(CharsDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |           format!($string)
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:210:5
[INFO] [stdout]     |
[INFO] [stdout] 210 |       test_domain!(CharsDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:234:5
[INFO] [stdout]     |
[INFO] [stdout] 234 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:234:5
[INFO] [stdout]     |
[INFO] [stdout] 234 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:234:5
[INFO] [stdout]     |
[INFO] [stdout] 234 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:234:5
[INFO] [stdout]     |
[INFO] [stdout] 234 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:10:9
[INFO] [stdout]     |
[INFO] [stdout]  10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:234:5
[INFO] [stdout]     |
[INFO] [stdout] 234 |       test_domain!(BytesDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |           format!($string)
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:235:5
[INFO] [stdout]     |
[INFO] [stdout] 235 |       test_domain!(CharsDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |           format!($string)
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:235:5
[INFO] [stdout]     |
[INFO] [stdout] 235 |       test_domain!(CharsDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |           format!($string)
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:235:5
[INFO] [stdout]     |
[INFO] [stdout] 235 |       test_domain!(CharsDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |           format!($string)
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:235:5
[INFO] [stdout]     |
[INFO] [stdout] 235 |       test_domain!(CharsDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]    --> src/tests/support.rs:20:9
[INFO] [stdout]     |
[INFO] [stdout]  20 |           format!($string)
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout]  36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]     |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout]  40 | /         vec![
[INFO] [stdout]  41 | |             $(
[INFO] [stdout]  42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout]  43 | |             ),*
[INFO] [stdout]  44 | |         ]
[INFO] [stdout]     | |_________- borrow later used here
[INFO] [stdout]     |
[INFO] [stdout]    ::: src/tests/writer.rs:235:5
[INFO] [stdout]     |
[INFO] [stdout] 235 |       test_domain!(CharsDomain);
[INFO] [stdout]     |       ------------------------- in this macro invocation
[INFO] [stdout]     |
[INFO] [stdout]     = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]     = note: this error originates in the macro `format` which comes from the expansion of the macro `test_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests.rs:51:5
[INFO] [stdout]    |
[INFO] [stdout] 51 |       test_with_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------------ in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_with_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests.rs:51:5
[INFO] [stdout]    |
[INFO] [stdout] 51 |       test_with_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------------ in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_with_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests.rs:51:5
[INFO] [stdout]    |
[INFO] [stdout] 51 |       test_with_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------------ in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_with_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:10:9
[INFO] [stdout]    |
[INFO] [stdout] 10 |           format!($($tokens),*).into_bytes()
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests.rs:51:5
[INFO] [stdout]    |
[INFO] [stdout] 51 |       test_with_domain!(BytesDomain);
[INFO] [stdout]    |       ------------------------------ in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `bformat` which comes from the expansion of the macro `test_with_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests.rs:52:5
[INFO] [stdout]    |
[INFO] [stdout] 52 |       test_with_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------------ in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_with_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests.rs:52:5
[INFO] [stdout]    |
[INFO] [stdout] 52 |       test_with_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------------ in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_with_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests.rs:52:5
[INFO] [stdout]    |
[INFO] [stdout] 52 |       test_with_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------------ in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_with_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0716]: temporary value dropped while borrowed
[INFO] [stdout]   --> src/tests/support.rs:20:9
[INFO] [stdout]    |
[INFO] [stdout] 20 |           format!($string)
[INFO] [stdout]    |           ^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
[INFO] [stdout] ...
[INFO] [stdout] 36 |               domain_format!($domain, $string).deref()
[INFO] [stdout]    |                                                      - temporary value is freed at the end of this statement
[INFO] [stdout] ...
[INFO] [stdout] 40 | /         vec![
[INFO] [stdout] 41 | |             $(
[INFO] [stdout] 42 | |                 domain_format_ref!($domain, $value)
[INFO] [stdout] 43 | |             ),*
[INFO] [stdout] 44 | |         ]
[INFO] [stdout]    | |_________- borrow later used here
[INFO] [stdout]    |
[INFO] [stdout]   ::: src/tests.rs:52:5
[INFO] [stdout]    |
[INFO] [stdout] 52 |       test_with_domain!(CharsDomain);
[INFO] [stdout]    |       ------------------------------ in this macro invocation
[INFO] [stdout]    |
[INFO] [stdout]    = note: consider using a `let` binding to create a longer lived value
[INFO] [stdout]    = note: this error originates in the macro `format` which comes from the expansion of the macro `test_with_domain` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] For more information about this error, try `rustc --explain E0716`.
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `ssv` (lib test) due to 96 previous errors
[INFO] running `Command { std: "docker" "inspect" "32bca3c5749f2720cb97edbe8fe07b493ad7d538541239d77e9a19e407c1c419", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "32bca3c5749f2720cb97edbe8fe07b493ad7d538541239d77e9a19e407c1c419", kill_on_drop: false }`
[INFO] [stdout] 32bca3c5749f2720cb97edbe8fe07b493ad7d538541239d77e9a19e407c1c419
